home *** CD-ROM | disk | FTP | other *** search
- #include "A4Code.h"
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #if !defined(__POWERPC__) && !defined(__CFM68K__)
-
- void RememberA4(void);
-
- asm long SetUpA4(void)
- {
- move.l a4,d0
- lea __storage,a4
- move.l (a4),a4
- rts
-
- __storage: dc.l 0 /* this storage is only referenced thru data cache */
-
- entry RememberA4
- lea __storage,a0
- move.l a4,(a0)
- rts
- }
-
- #endif
-
- #ifdef __cplusplus
- }
- #endif
-